home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / change1a / changepr.frm (.txt) next >
Visual Basic Form  |  1999-08-29  |  2KB  |  53 lines

  1. VERSION 5.00
  2. Begin VB.Form frmChangePrinterOrient 
  3.    Caption         =   "Change Printer Orientation"
  4.    ClientHeight    =   1680
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3675
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MinButton       =   0   'False
  11.    ScaleHeight     =   1680
  12.    ScaleWidth      =   3675
  13.    StartUpPosition =   2  'CenterScreen
  14.    Begin VB.CommandButton cmdChangePrinterOrient 
  15.       Caption         =   "Change Printer Orientation"
  16.       Height          =   495
  17.       Left            =   480
  18.       TabIndex        =   2
  19.       Top             =   960
  20.       Width           =   2655
  21.    End
  22.    Begin VB.OptionButton optLand 
  23.       Caption         =   "Landscape"
  24.       Height          =   495
  25.       Left            =   1920
  26.       TabIndex        =   1
  27.       Top             =   240
  28.       Width           =   1215
  29.    End
  30.    Begin VB.OptionButton optPort 
  31.       Caption         =   "Portrait"
  32.       Height          =   495
  33.       Left            =   600
  34.       TabIndex        =   0
  35.       Top             =   240
  36.       Width           =   1215
  37.    End
  38. Attribute VB_Name = "frmChangePrinterOrient"
  39. Attribute VB_GlobalNameSpace = False
  40. Attribute VB_Creatable = False
  41. Attribute VB_PredeclaredId = True
  42. Attribute VB_Exposed = False
  43. Option Explicit
  44. Private Sub cmdChangePrinterOrient_Click()
  45.       
  46.     If optPort.Value = True Then
  47.         ChngPrinterOrientationPortrait Me
  48.     ElseIf optLand.Value = True Then
  49.         ChngPrinterOrientationLandscape Me
  50.     End If
  51.         
  52. End Sub
  53.